home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / os2 / monte.zip / PIPES / MAKEFILE < prev   
Text File  |  1993-02-22  |  398b  |  23 lines

  1. # makefile for pipes: HOST.EXE and CLIENT.EXE
  2. cc   = icc /c /gd- /re /ss /ms /gm+ /ti+ /q+ /Sm /kb+
  3. link = link386 /nod /cod /map /pmtype:vio
  4. libs = dde4mbs dde4mbm os2386
  5.  
  6. all: client.exe  host.exe
  7.  
  8. client.exe: client.obj
  9.   $(link) client,,, $(libs);
  10.  
  11. host.exe: host.obj
  12.   $(link) host,,, $(libs);
  13.  
  14. client.obj: client.c
  15.   $(cc) client.c
  16.  
  17. host.obj: host.c
  18.   $(cc) host.c
  19.  
  20.  
  21.  
  22.  
  23.